Golang-101-Basic Usage


Posted by jerryeml on 2021-03-11

Variable

var {your_variable} type = {your_variable_value}

example:

var variable_01 string = "haha"

var (
    a int
    b float
)

Notice

  • variable must be defined first
  • go is a static language
  • variable should be unique
  • If you already defined the variable and you should use it!

Constant

Const will not be modify in runtime
const identifier [type] = value

const (
    a = iota //0
    b        //1
    c        //2
    d = "ha" //ha ,iota += 1
    e        //"ha"   iota += 1
    f = 100  //iota +=1
    g        //100  iota +=1
    h = iota //7 回傳iota數量
    i        //8

    Unknown = 0
    Female  = 1
    Male    = 2
)

Notice

  • int const will not store in address,therefore it can not get address through memory

#golang #rookie #basic-101







Related Posts

[Release Notes] 20210317_v1 - Support Insert img path and save button in post editor

[Release Notes] 20210317_v1 - Support Insert img path and save button in post editor

〈 C++學習日記 #1〉指標 Pointer (Part.1)

〈 C++學習日記 #1〉指標 Pointer (Part.1)

我的電腦配單

我的電腦配單


Comments